styleproperty: Add GtkStyleProperty::value-type
authorBenjamin Otte <otte@redhat.com>
Sat, 31 Dec 2011 16:36:22 +0000 (17:36 +0100)
committerBenjamin Otte <otte@redhat.com>
Mon, 9 Jan 2012 17:37:52 +0000 (18:37 +0100)
gtk/gtkcssshorthandpropertyimpl.c
gtk/gtkstyleproperty.c
gtk/gtkstylepropertyprivate.h

index 4f2a5cc2aa97b8805531295804a48de14bc66750..ad47d17dbec72f2dda32f03efc675ec7e9c749da 100644 (file)
@@ -784,6 +784,7 @@ _gtk_css_shorthand_property_register (GParamSpec               *pspec,
 
   node = g_object_new (GTK_TYPE_CSS_SHORTHAND_PROPERTY,
                        "name", pspec->name,
+                       "value-type", pspec->value_type,
                        "subproperties", subproperties,
                        NULL);
 
index f7f2efebd0834c4078e855a45c5ba556410a723b..646e5c8837a0528c7ed8315e4eddaaef74f4d2cd 100644 (file)
@@ -54,7 +54,8 @@
 
 enum {
   PROP_0,
-  PROP_NAME
+  PROP_NAME,
+  PROP_VALUE_TYPE
 };
 
 static GHashTable *parse_funcs = NULL;
@@ -90,6 +91,9 @@ gtk_style_property_set_property (GObject      *object,
       g_assert (g_hash_table_lookup (klass->properties, property->name) == NULL);
       g_hash_table_insert (klass->properties, property->name, property);
       break;
+    case PROP_VALUE_TYPE:
+      property->value_type = g_value_get_gtype (value);
+      break;
     default:
       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
       break;
@@ -109,6 +113,9 @@ gtk_style_property_get_property (GObject    *object,
     case PROP_NAME:
       g_value_set_string (value, property->name);
       break;
+    case PROP_VALUE_TYPE:
+      g_value_set_gtype (value, property->value_type);
+      break;
     default:
       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
       break;
@@ -131,6 +138,13 @@ _gtk_style_property_class_init (GtkStylePropertyClass *klass)
                                                         P_("The name of the property"),
                                                         NULL,
                                                         G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
+  g_object_class_install_property (object_class,
+                                   PROP_VALUE_TYPE,
+                                   g_param_spec_gtype ("value-type",
+                                                       P_("Value type"),
+                                                       P_("The value type returned by GtkStyleContext"),
+                                                       G_TYPE_NONE,
+                                                       G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
 
   klass->properties = g_hash_table_new (g_str_hash, g_str_equal);
 }
@@ -138,6 +152,7 @@ _gtk_style_property_class_init (GtkStylePropertyClass *klass)
 static void
 _gtk_style_property_init (GtkStyleProperty *property)
 {
+  property->value_type = G_TYPE_NONE;
 }
 
 static void
@@ -2449,6 +2464,25 @@ _gtk_style_property_get_name (GtkStyleProperty *property)
   return property->name;
 }
 
+/**
+ * _gtk_style_property_get_value_type:
+ * @property: the property to query
+ *
+ * Gets the value type of the @property, if the property is usable
+ * in public API via _gtk_style_property_assign() and
+ * _gtk_style_property_query(). If the @property is not usable in that
+ * way, %G_TYPE_NONE is returned.
+ *
+ * Returns: the value type in use or %G_TYPE_NONE if none.
+ **/
+GType
+_gtk_style_property_get_value_type (GtkStyleProperty *property)
+{
+  g_return_val_if_fail (GTK_IS_STYLE_PROPERTY (property), G_TYPE_NONE);
+
+  return property->value_type;
+}
+
 
 void
 _gtk_style_property_register (GParamSpec               *pspec,
@@ -2462,6 +2496,7 @@ _gtk_style_property_register (GParamSpec               *pspec,
 
   node = g_object_new (GTK_TYPE_CSS_STYLE_PROPERTY,
                        "name", pspec->name,
+                       "value-type", pspec->value_type,
                        NULL);
   node->flags = flags;
   node->pspec = pspec;
index 946d2cbd5b3e76c8298c99a53e916305e8c5fb11..a7ca9da737d45e10dc82da017c5bdf58e82792db 100644 (file)
@@ -58,6 +58,7 @@ struct _GtkStyleProperty
   GObject parent;
 
   char *name;
+  GType value_type;
 
   GParamSpec               *pspec;
   GtkStylePropertyFlags     flags;
@@ -113,6 +114,7 @@ void                     _gtk_style_property_print_value   (GtkStyleProperty *
                                                             const GValue           *value,
                                                             GString                *string);
 
+GType                    _gtk_style_property_get_value_type(GtkStyleProperty *      property);
 void                     _gtk_style_property_query         (GtkStyleProperty *      property,
                                                             GtkStyleProperties     *props,
                                                             GtkStateFlags           state,